|
Ubicación en el Menú |
---|
Modificación → Herramientas de Arreglo → Arreglo Punto |
Entornos de trabajo |
Borrador, Arquitectura |
Atajo de teclado por defecto |
Ninguno |
Introducido en versión |
0.18 |
Ver también |
Borrador OrthoArray, Borrador ArregloPolar,
Borrador ArregloCircular, Borrador ArregloRuta, Borrador ArregloEnlaceRuta, Borrador ArregloEnlacePunto |
El comando El comando Borrador ArregloPuntos crea una arreglo regular a partir de un objeto seleccionado colocando copias en los puntos de un compuesto puntos. Utilice el comando Borrador ArregloEnlacePunto para crear un arreglo Enlace más eficiente. Excepto por el tipo de arreglo que se crea, arreglo de enlace o matriz normal, el comando Borrador ArregloEnlacePunto es idéntico a este comando.
Ambos comandos pueden utilizarse en objetos 2D
creados con el Ambiente de Trabajo Borrador o Ambiente de Trabajo Dibujo, pero también en muchos objetos 3D como los creados con el Ambiente de Trabajo Pieza, Ambiente de Trabajo DiseñoPieza o Ambiente de Trabajo Arquitectura.
The point object can be any object with a shape and vertices (including a Std Part containing one or more of such objects), as well as a mesh and a point cloud. Duplicate points in the point object are filtered out.
Borrador ArregloPunto
Ver también: Editor de propiedades.
Un objeto Borrador ArregloPunto deriva de un objeto Pieza Función y hereda todas sus propiedades (con la excepción de algunas propiedades de la Vista que no son heredadas por los arreglos enlace). Las siguientes propiedades son adicionales a menos que se indique lo contrario:
Link
The properties in this group are only available for Link arrays. See Std LinkMake for more information.
Float
)Vector
)VectorList
)BoolList
)PlacementList
)LinkList
)Bool
)LinkList
)LinkSubHidden
)Bool
)Objetos
Link
): specifies the object to duplicate in the array.Integer
): (read-only) specifies the number of elements in the array. This number is determined by the number of points in the DatosPoint Object.Bool
): specifies whether to expand the array in the Tree view to enable the selection of its individual elements. Only available for Link arrays.Placement
): : specifies an additional placement, translation and rotation, for each element in the array.Bool
): specifies if overlapping elements in the array are fused or not. Not used for Link arrays. introduced in version 1.0Link
): specifies the object whose points are used to position the elements in the array.
Enlace
The properties in this group, with the exception of the inherited property, are only available for Link arrays. See Std LinkMake for more information.
Enumeration
)FloatConstraint
)Bool
)FloatConstraint
)Bool
): this is an inherited property that appears in the Selection group for other arraysMaterial
)Base
The properties in this group, with the exception of the inherited property, are only available for Link arrays. See Std LinkMake for more information.
PersistentObject
)MaterialList
)ColorList
)BoolList
)PythonObject
): this is an inherited property.Display Options
The properties in this group are inherited properties. See Part Feature for more information.
Bool
): this property is not inherited by Link arrays.Enumeration
): for Link arrays it can be Link
or ChildView
. For other arrays it can be: Flat Lines
, Shaded
, Wireframe
or Points
Bool
)Bool
)Borrador
Enumeration
): not used.Float
): not used.Object style
The properties in this group are not inherited by Link arrays.
Ver también: Documentación de la API autogenerada y Fundamentos de FreeCAD Guión.
To create a point array use the make_point_array
method (introduced in version 0.19) of the Draft module. This method replaces the deprecated makePointArray
method.
point_array = make_point_array(base_object, point_object, extra=None, use_link=True)
base_object
is the object to be arrayed. It can also be the Label
(string) of an object in the current document.point_object
is the object containing the points. It can also be the Label
(string) of an object in the current document. It should have a Geometry
, Links
, or Components
property containing points.extra
is an App.Placement
, an App.Vector
or an App.Rotation
that displaces each element.use_link
is True
the created elements are App Links instead of regular copies.Ejemplo:
import FreeCAD as App
import Draft
doc = App.newDocument()
polygon = Draft.make_polygon(3, radius=500.0)
p1 = Draft.make_point(App.Vector(1500, 0, 0))
p2 = Draft.make_point(App.Vector(2500, 0, 0))
p3 = Draft.make_point(App.Vector(2000, 1000, 0))
compound = doc.addObject("Part::Compound", "Compound")
compound.Links = [p1, p2, p3]
point_array = Draft.make_point_array(polygon, compound)
doc.recompute()